home *** CD-ROM | disk | FTP | other *** search
/ Fantasy Artist 39 / Fantasy Artist - Issue 39.bin / js / common.js < prev    next >
Text File  |  2011-02-03  |  209b  |  13 lines

  1. $(document).ready(function() {
  2.     $("#staticPane").fadeIn(750);
  3.     $("#contentPane").animate(
  4.         {
  5.             opacity: 1,
  6.             width: "285px"
  7.         },
  8.         750, "linear",
  9.         function() {
  10.             $("#previewPane").fadeIn(750);
  11.         }
  12.     );
  13. });